Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
- if v.Name == "ui" then
- v:Destroy()
- end
- end
- local UI = loadstring(game:HttpGetAsync("https://pastebin.com/raw/0589YkmB"))()
- local window = UI:Window("Premium")
- local nif = UI:Notification("Welcome to", game:GetService("Players").LocalPlayer.Name, "Okay!")
- local main = window:Tab("Main")
- local player = window:Tab("LocalPlayer")
- main:Toggle("Map Vote",false,function(value)
- game:GetService("Players").LiteBlade229.PlayerGui.MainGui.MapVotePage.Visible = value
- end)
- _G.Tp = false
- main:Toggle("Ctrl TP",false,function(value)
- _G.Tp = value
- end)
- local ctrl = false
- game:GetService("UserInputService").InputBegan:Connect(function(key,event)
- if event then return end
- if key.KeyCode == Enum.KeyCode.LeftControl then
- ctrl = true
- end
- end)
- game:GetService("UserInputService").InputEnded:Connect(function(key,event)
- if event then return end
- if key.KeyCode == Enum.KeyCode.LeftControl then
- ctrl = false
- end
- end)
- game:GetService("UserInputService").InputBegan:Connect(function(key,event)
- if event then return end
- if key.UserInputType == Enum.UserInputType.MouseButton1 then
- if ctrl and _G.Tp then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Players").LocalPlayer:GetMouse().Hit.Position) + Vector3.new(0,4,0)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement