Advertisement
kipr987

Neutral Survival Game

Oct 28th, 2024 (edited)
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.37 KB | None | 0 0
  1. for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
  2.     if v.Name == "ui" then
  3.         v:Destroy()
  4.     end
  5. end
  6. local UI = loadstring(game:HttpGetAsync("https://pastebin.com/raw/0589YkmB"))()
  7.  
  8. local window = UI:Window("Premium")
  9. local nif = UI:Notification("Welcome to", game:GetService("Players").LocalPlayer.Name, "Okay!")
  10. local main = window:Tab("Main")
  11. local player = window:Tab("LocalPlayer")
  12.  
  13. main:Toggle("Map Vote",false,function(value)
  14. game:GetService("Players").LiteBlade229.PlayerGui.MainGui.MapVotePage.Visible = value
  15. end)
  16. _G.Tp = false
  17. main:Toggle("Ctrl TP",false,function(value)
  18. _G.Tp = value
  19. end)
  20.  
  21. local ctrl = false
  22.  
  23. game:GetService("UserInputService").InputBegan:Connect(function(key,event)
  24.     if event then return end
  25.     if key.KeyCode == Enum.KeyCode.LeftControl then
  26.         ctrl = true
  27.     end
  28. end)
  29.  
  30. game:GetService("UserInputService").InputEnded:Connect(function(key,event)
  31.     if event then return end
  32.     if key.KeyCode == Enum.KeyCode.LeftControl then
  33.         ctrl = false
  34.     end
  35. end)
  36.  
  37. game:GetService("UserInputService").InputBegan:Connect(function(key,event)
  38.     if event then return end
  39.     if key.UserInputType == Enum.UserInputType.MouseButton1 then
  40.         if ctrl and _G.Tp then
  41.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Players").LocalPlayer:GetMouse().Hit.Position) + Vector3.new(0,4,0)
  42.         end
  43.     end
  44. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement