Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. local Player = game:GetService("Players").LocalPlayer
  2. local GuiParent = game.CoreGui
  3. local Gui = GuiParent:FindFirstChild("Rice") or Instance.new("ScreenGui", game.CoreGui)
  4. Gui.Name = "Rice"
  5. Gui:ClearAllChildren()
  6.  
  7. local GuiOpen = false
  8.  
  9. local MainGui = Instance.new("Frame", Gui)
  10. MainGui.Size = UDim2.new(0, 530, 0, 200)
  11. MainGui.Draggable = false
  12. MainGui.Active = true
  13. MainGui.BackgroundColor3 = Color3.new(0, 0, 0.0627451)
  14. MainGui.BackgroundTransparency = 1
  15. MainGui.Position = UDim2.new(0, 0, 0, 27)
  16. MainGui.BorderSizePixel = 3
  17.  
  18.  
  19. local localff = Instance.new("TextButton", MainFrame)
  20. localff.Size = UDim2.new(0, 100, 0, 20)
  21. localff.Position = UDim2.new(0, 110, 0, 50)
  22. localff.Text = "ForceField"
  23. localff.BorderSizePixel = 0
  24. localff.BackgroundTransparency = 0
  25. localff.TextColor = BrickColor.new("Black")
  26. localff.Parent = MainGui
  27. localff.BackgroundColor3 = Color3.new(27, 42, 53)
  28. localff.Font = "SourceSansLight"
  29. localff.FontSize = 6
  30.  
  31. localff.MouseButton1Click:connect(function()
  32. music = Instance.new("Sound", game.Workspace)
  33. music.SoundId = "rbxassetid://145250029"
  34. music.Looped = true
  35. music.Pitch = 1.5
  36. music.Volume = 22
  37. music:Play()
  38.  
  39. s = Instance.new("Sky")
  40. s.Name = "RICEE"
  41. s.SkyboxBk = "http://www.roblox.com/asset/?id=114503260"
  42. s.SkyboxDn = "http://www.roblox.com/asset/?id=114503260"
  43. s.SkyboxFt = "http://www.roblox.com/asset/?id=114503260"
  44. s.SkyboxLf = "http://www.roblox.com/asset/?id=114503260"
  45. s.SkyboxRt = "http://www.roblox.com/asset/?id=114503260"
  46. s.SkyboxUp = "http://www.roblox.com/asset/?id=114503260"
  47. s.Parent = game.Lighting
  48. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement