Advertisement
hoffmvn2

sdawdsawd

Apr 15th, 2021 (edited)
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. -- Made By Pigeon Dude
  2.  
  3. -- Instances:
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Main = Instance.new("Frame")
  7. local TpToEnd = Instance.new("TextButton")
  8. local Title = Instance.new("TextLabel")
  9. local GodMode = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Main.Name = "Main"
  17. Main.Parent = ScreenGui
  18. Main.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  19. Main.BorderSizePixel = 0
  20. Main.Position = UDim2.new(0.0573979616, 0, 0.668304682, 0)
  21. Main.Size = UDim2.new(0.277423471, 0, 0.253071249, 0)
  22. Main.Active = true
  23. Main.Draggable = true
  24.  
  25. TpToEnd.Name = "TpToEnd"
  26. TpToEnd.Parent = Main
  27. TpToEnd.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  28. TpToEnd.BorderSizePixel = 0
  29. TpToEnd.Position = UDim2.new(0.0298850574, 0, 0.383495152, 0)
  30. TpToEnd.Size = UDim2.new(0.434482753, 0, 0.490291327, 0)
  31. TpToEnd.Font = Enum.Font.GothamBold
  32. TpToEnd.Text = "Tp To The End"
  33. TpToEnd.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. TpToEnd.TextScaled = true
  35. TpToEnd.TextSize = 14.000
  36. TpToEnd.TextStrokeTransparency = 0.000
  37. TpToEnd.TextWrapped = true
  38. TpToEnd.MouseButton1Down:connect(function()
  39. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").Maps.End.Platform.CFrame.p)
  40. end)
  41.  
  42. Title.Name = "Title"
  43. Title.Parent = Main
  44. Title.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  45. Title.BorderSizePixel = 0
  46. Title.Position = UDim2.new(0.0298850574, 0, 0.0339805819, 0)
  47. Title.Size = UDim2.new(0.93599999, 0, 0.291000009, 0)
  48. Title.Font = Enum.Font.GothamBold
  49. Title.Text = "Rage Runner"
  50. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. Title.TextScaled = true
  52. Title.TextSize = 14.000
  53. Title.TextStrokeTransparency = 0.000
  54. Title.TextWrapped = true
  55.  
  56. GodMode.Name = "GodMode"
  57. GodMode.Parent = Main
  58. GodMode.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  59. GodMode.BorderSizePixel = 0
  60. GodMode.Position = UDim2.new(0.53103447, 0, 0.383495152, 0)
  61. GodMode.Size = UDim2.new(0.434482753, 0, 0.490291327, 0)
  62. GodMode.Font = Enum.Font.GothamBold
  63. GodMode.Text = "God Mode"
  64. GodMode.TextColor3 = Color3.fromRGB(255, 255, 255)
  65. GodMode.TextScaled = true
  66. GodMode.TextSize = 14.000
  67. GodMode.TextStrokeTransparency = 0.000
  68. GodMode.TextWrapped = true
  69. GodMode.MouseButton1Down:connect(function()
  70. local x = "DAMAGE_PLAYER"
  71. local n = -math.huge, 0
  72. local event = game:GetService("ReplicatedStorage").NetworkEvents.RemoteEvent
  73. event:FireServer(x, n)
  74. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement