Totek2007

Untitled

Aug 1st, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. s = Instance.new("ScreenGui", game.CoreGui)
  2. s.Name = "Refresh"
  3.  
  4. f = Instance.new("Frame", game.CoreGui.Refresh)
  5. f.Name = "RefreshButton"
  6.  
  7. b = Instance.new("TextButton", game.CoreGui.Refresh.RefreshButton)
  8. b.Name = "Refresh"
  9. b.Text = "Refresh"
  10. b.Size = UDim2.new(0,110,0,35)
  11. b.Position = UDim2.new(0,15,0,475)
  12. b.Transparency = 0.4
  13. b.BackgroundColor3 = Color3.new(0,0,0)
  14. b.TextColor3 = Color3.new(255,255,255)
  15. b.TextTransparency = 0
  16. b.BorderSizePixel = 0
  17. b.FontSize = 6
  18. b.Font = 2
  19.  
  20. b.MouseButton1Down:connect(function()
  21. game:GetObjects("rbxassetid://166330068")[1].Parent = game.Players.LocalPlayer.PlayerGui
  22. end)
Add Comment
Please, Sign In to add comment