RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a Phasmatos Lacus- Teleportation spell!"
-- server script for teleportation spell local Players = game:GetService("Players") local spellName = "Phasmatos Lacus" local teleportLocation = Vector3.new(0, 50, 0) Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) if message == spellName then local character = player.Character if character then character:SetPrimaryPartCFrame(CFrame.new(teleportLocation)) end end end) end)