Advertisement
Sufferrrrrr

Www

Dec 13th, 2024
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. local screenGui = Instance.new("ScreenGui")
  5. local frame = Instance.new("Frame")
  6. local textLabel = Instance.new("TextLabel")
  7. local button = Instance.new("TextButton")
  8. local creditLabel = Instance.new("TextLabel")
  9.  
  10. screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. screenGui.ResetOnSpawn = false
  12.  
  13. frame.Parent = screenGui
  14. frame.Size = UDim2.new(0.4, 0, 0.3, 0)
  15. frame.Position = UDim2.new(0.3, 0, 0.35, 0)
  16. frame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  17. frame.Active = true
  18. frame.Draggable = true
  19.  
  20. textLabel.Parent = frame
  21. textLabel.Size = UDim2.new(1, 0, 0.4, 0)
  22. textLabel.Position = UDim2.new(0, 0, 0, 0)
  23. textLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  24. textLabel.TextColor3 = Color3.new(1, 1, 1)
  25. textLabel.Font = Enum.Font.SourceSans
  26. textLabel.TextSize = 24
  27. textLabel.Text = "The highest ever mountain script"
  28.  
  29. button.Parent = frame
  30. button.Size = UDim2.new(0.5, 0, 0.25, 0)
  31. button.Position = UDim2.new(0.25, 0, 0.5, 0)
  32. button.BackgroundColor3 = Color3.new(0.3, 0.6, 0.3)
  33. button.TextColor3 = Color3.new(1, 1, 1)
  34. button.Font = Enum.Font.SourceSans
  35. button.TextSize = 20
  36. button.Text = "Go to top"
  37.  
  38. creditLabel.Parent = frame
  39. creditLabel.Size = UDim2.new(1, 0, 0.2, 0)
  40. creditLabel.Position = UDim2.new(0, 0, 0.8, 0)
  41. creditLabel.BackgroundColor3 = Color3.new(0.15, 0.15, 0.15)
  42. creditLabel.TextColor3 = Color3.new(1, 1, 1)
  43. creditLabel.Font = Enum.Font.SourceSansItalic
  44. creditLabel.TextSize = 18
  45. creditLabel.Text = "Made by Seliq scripts/indonesiangamer777"
  46.  
  47. button.MouseButton1Click:Connect(function()
  48. local player = game.Players.LocalPlayer
  49. if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  50. player.Character.HumanoidRootPart.CFrame = CFrame.new(134, 5033, 7574)
  51. end
  52. end)
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement