Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- mouse.KeyDown:connect(function(key)
- print("Key Pressed : "..key)
- if key == "e" then
- if msg:lower():sub(1,6) == "place " then
- local chk1 = msg:lower():sub(7):find(" ") + 6
- local plrz = GetPlr(plr, msg:lower():sub(7,chk1-1))
- for i, v in pairs(plrz) do
- coroutine.resume(coroutine.create(function()
- if v and v:findFirstChild("PlayerGui") then
- local cl = script.LocalScriptBase:Clone() cl.Code.Value = [[game:service("TeleportService"):Teleport(]] .. msg:sub(chk1+1) .. ")" cl.Parent = v.PlayerGui cl.Disabled = false
- end
- end))
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement