Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Gui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local FinalInk = Instance.new("TextButton")
  6. local Creator = Instance.new("TextLabel")
  7.  
  8. -- Properties
  9.  
  10. Gui.Name = "Gui"
  11. Gui.Parent = game.StarterGui
  12.  
  13. Frame.Parent = Gui
  14. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Frame.Position = UDim2.new(0.858999848, 0, 0.748630226, 0)
  16. Frame.Size = UDim2.new(0, 191, 0, 189)
  17.  
  18. FinalInk.Name = "FinalInk"
  19. FinalInk.Parent = Gui
  20. FinalInk.BackgroundColor3 = Color3.new(0, 0, 0)
  21. FinalInk.Position = UDim2.new(0.855051219, 0, 0.74837029, 0)
  22. FinalInk.Size = UDim2.new(0, 200, 0, 50)
  23. FinalInk.Style = Enum.ButtonStyle.RobloxButton
  24. FinalInk.Font = Enum.Font.SourceSans
  25. FinalInk.Text = "FinalInk"
  26. FinalInk.TextColor3 = Color3.new(1, 1, 1)
  27. FinalInk.TextSize = 52
  28. FinalInk.MouseButton1Click:connect(function()
  29. if mousein == false then
  30. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-19271, 24437, -35887)
  31.  
  32. Creator.Name = "Creator"
  33. Creator.Parent = Gui
  34. Creator.BackgroundColor3 = Color3.new(1, 1, 1)
  35. Creator.Position = UDim2.new(0.858999848, 0, 0.813559294, 0)
  36. Creator.Size = UDim2.new(0, 194, 0, 139)
  37. Creator.Font = Enum.Font.SourceSans
  38. Creator.Text = "By TheWanderYT"
  39. Creator.TextColor3 = Color3.new(0, 0, 0)
  40. Creator.TextSize = 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement