How To Get Any Roblox Game Pass For Free 2017

Nov 7th, 2016

2009 – Roblox badges are easier to get, and player badges are introduced. 2010 – Player badges get a new design. 2012 – The BC, TBC and OBC Roblox badges are added. 2017 – Player badges can now be awarded by any place in the universe, and player Badges no longer require Builders Club to create. From even more technical point of view, video game offers you access to its coding system, so you could make your personal plugins and add them to the game. There are many possibilities that are waiting for you. Roblox is free to play game that provides a great deal of experience.

Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
Roblox
  1. --| WaitForChild |--
  2. -- Waits for parent.child to exist, then returns it
  3. assert(parent, 'ERROR: WaitForChild: parent is nil')
  4. while not parent:FindFirstChild(childName) do parent.ChildAdded:wait() end
  5. end
  6. -----------------
  7. -----------------
  8. local GamePassService = Game:GetService('GamePassService')
  9. local PlayersService = Game:GetService('Players')
  10. local InsertService = Game:GetService('InsertService')
  11. local LightingService = Game:GetService('Lighting') --TODO: Use new data store service once that exists
  12. local GamePassIdObject = WaitForChild(script, 'GamePassId')
  13. local ToolAssetsToLoad = WaitForChild(script, 'ToolAssetsToLoad')
  14. local AdminTools = LightingService:FindFirstChild('AdminTools')
  15. -----------------
  16. -----------------
  17. -- Makes copies of all the admin tools and puts them in target
  18. for _, tool in pairs(AdminTools:GetChildren()) do
  19. toolClone.Parent = target
  20. end
  21. -- When a player with the game pass joins, give them the admin tools
  22. if GamePassService:PlayerHasPass(player, GamePassIdObject.Value) then
  23. local starterGear = WaitForChild(player, 'StarterGear')
  24. if player.Character then -- They've already loaded and won't get their StarterGear until next spawn
  25. local backpack = WaitForChild(player, 'Backpack')
  26. end
  27. end
  28. --------------------
  29. --------------------
  30. -- Create AdminTools if it doesn't exist
  31. AdminTools = Instance.new('Model')
  32. -- Load all of the assets in ToolAssetsToLoad and put them in AdminTools
  33. for _, intObject in pairs(ToolAssetsToLoad:GetChildren()) do
  34. if intObject and intObject:IsA('IntValue') and intObject.Value then
  35. local assetModel = InsertService:LoadAsset(intObject.Value)
  36. local asset = assetModel:GetChildren()[1]
  37. asset.Parent = AdminTools
  38. end
  39. end
  40. AdminTools.Parent = LightingService
RAW Paste Data
How To Get Any Roblox Game Pass For Free 2017
Jan 15th, 2017
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. local c = Player.Character
  2. c = Player.CharacterAdded:wait()
  3. radio.Name = 'Radio'
  4. radio.Anchored = true
  5. radio.Size = Vector3.new(3.2, 1.43, 0.8)
  6. radio.CFrame = c.Torso.CFrame * CFrame.new(0,0,.8)
  7. radio.CFrame = radio.CFrame * CFrame.fromEulerAnglesXYZ(0,3.15,0)
  8. radio.CFrame = radio.CFrame * CFrame.fromEulerAnglesXYZ(0,0,-.7)
  9. local mesh = Instance.new('SpecialMesh',radio)
  10. mesh.MeshId = 'http://www.roblox.com/asset/?id=151760030'
  11. mesh.TextureId = 'https://www.roblox.com/TX_NCGBoomBox-item?id=151760072'
  12. local weld = Instance.new('Weld',radio)
  13. weld.Part1 = radio
  14. weld.C1 = radio.CFrame:inverse()
  15. sound.Name = 'Music'
  16. sound.Volume = 1
  17. local gui = Instance.new('ScreenGui',Player.PlayerGui)
  18. local frame = Instance.new('Frame',gui)
  19. frame.BackgroundColor3 = Color3.new(58/255,58/255,58/255)
  20. frame.BorderSizePixel = 2
  21. frame.Position = UDim2.new(0,20,.5,-100)
  22. local playb = Instance.new('TextButton',frame)
  23. playb.BorderColor3 = Color3.new(0,0,0)
  24. playb.Size = UDim2.new(.3,0,.2,0)
  25. playb.Text = 'Play'
  26. playb.TextScaled = true
  27. local stopb = Instance.new('TextButton',frame)
  28. stopb.BorderColor3 = Color3.new(0,0,0)
  29. stopb.Size = UDim2.new(.3,0,.2,0)
  30. stopb.Text = 'Stop'
  31. stopb.TextScaled = true
  32. local stipb = Instance.new('TextBox',frame)
  33. stipb.BorderColor3 = Color3.new(0,0,0)
  34. stipb:TweenSize(UDim2.new(.5,0,.25,0),'Out','Quad',1,true)
  35. stipb.Text = 'SoundId'
  36. stipb.TextScaled = true
  37. local label = Instance.new('TextLabel',frame)
  38. label.TextScaled = true
  39. label.TextColor3 = Color3.new(255,255,255)
  40. --stipb.Size = UDim2.new(1,0,.2,0)
  41. local Playing = false
  42. stipb.Changed:connect(function()
  43. end)
  44. playb.MouseButton1Click:connect(function()
  45. Playing = true
  46. sound:Stop()
  47. end)
  48. while true do
  49. mesh.Scale = Vector3.new(1.1,1.1,1.1)
  50. mesh.Scale = Vector3.new(1,1,1)
  51. wait(.2)
How To Get Any Roblox Game Pass For Free 2017
RAW Paste Data

How To Get Any Roblox Game Pass For Free 2017 Windows 10

Comments are closed.