Advertisement
TheNadie

Untitled

Dec 28th, 2018
21,843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. --[[
  2. the function was made by xentius on v3rm and the gui by keegaroo65 on v3rm
  3. uh here's a link I guess: https://v3rmillion.net/showthread.php?tid=31903
  4. --]]
  5. a = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  6. if a:FindFirstChild("TinyTanksGui") then
  7. a.TinyTanksGui:Destroy()
  8. end
  9. local name = game.Players.LocalPlayer.Name
  10. function ee()
  11. local x=game.Workspace.Tanks["Tank-"..name]
  12. --[[]]
  13. x.Settings.MoveSpeed.Value = 100
  14. x.Settings.RotationSpeed.Value = 1000
  15. x.Settings.LoadedShots.Value = 50000
  16. x.Settings.MaxFireRate.Value = 0.01
  17. x.Settings.AbilityCooldown.Value = 0.05
  18. x.Settings.BulletsPerShot.Value = 1
  19. x.Settings.SpecialAmmoSpeed.Value = 500
  20. x.Remotes.AddAmmo:FireServer()
  21. local aa = x.AvailableAmmo:GetChildren()
  22. for i = 1,#aa do
  23. aa[i].Value = 50000
  24. end
  25. end
  26. local gui = Instance.new("ScreenGui")
  27. gui.Parent = game.Players.LocalPlayer.PlayerGui
  28. gui.ResetOnSpawn = false
  29. gui.Name = "TinyTanksGui"
  30. --{0.025, 0},{0.5, -25}
  31. local fr = Instance.new("Frame")
  32. fr.Parent = gui
  33. fr.Draggable = true
  34. fr.Position = UDim2.new(0.025, 0, 0.5, -25)
  35. fr.Size = UDim2.new(0,100,0,50)
  36. fr.Active = true
  37. local b = Instance.new("TextButton")
  38. b.Text = "Activate God Mode ;)"
  39. b.TextWrapped = true
  40. b.Parent = fr
  41. b.Position = UDim2.new(0,0,0,0)
  42. b.Size = UDim2.new(1,0,1,0)
  43. b.BackgroundTransparency = 1
  44. b.MouseButton1Click:Connect(ee)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement