Advertisement
dady172172

Coffee Simulator scripts

Dec 20th, 2019
1,032
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.71 KB | None | 0 0
  1. --[[
  2. game https://www.roblox.com/games/4464305729/NEW-Coffee-Simulator
  3. more/contact https://github.com/dady172172/Roblox-Cheats I have moved to Gethub
  4. ]]--
  5.  
  6. _G.StartingArea = true -- use this on if you have no rebirths
  7. while _G.StartingArea == true do
  8.     HRP = game.Players.LocalPlayer.Character.HumanoidRootPart
  9.     for _,v in pairs(game:GetService("Workspace").coins:GetChildren()) do      
  10.         if v.Name == "coin" then
  11.             v.CFrame = HRP.CFrame
  12.         end    
  13.     end
  14.     wait()
  15.     game:GetService("Workspace").platforms.sell.CFrame = HRP.CFrame
  16. end
  17.  
  18. _G.rebirth = true --after you rebirth 1 time use this one
  19. while _G.rebirth == true do
  20.     HRP = game.Players.LocalPlayer.Character.HumanoidRootPart
  21.     for _,v in pairs(game:GetService("Workspace").coins:GetChildren()) do      
  22.         if v.Name == "coin" or v.Name == "2" then
  23.             v.CFrame = HRP.CFrame
  24.         end    
  25.     end  
  26.     wait()
  27.     game:GetService("Workspace").platforms.sell.CFrame = HRP.CFrame
  28. end
  29.  
  30. _G.rebirth = true --after you rebirth 3 time use this one
  31. while _G.rebirth == true do
  32.     HRP = game.Players.LocalPlayer.Character.HumanoidRootPart
  33.     for _,v in pairs(game:GetService("Workspace").coins:GetChildren()) do      
  34.         if v.Name == "coin" or v.Name == "2" or v.Name == "3" then
  35.             v.CFrame = HRP.CFrame
  36.         end    
  37.     end  
  38.     wait()
  39.     game:GetService("Workspace").platforms.sell.CFrame = HRP.CFrame
  40. end
  41.  
  42. _G.rebirth = true --last area
  43. while _G.rebirth == true do
  44.     HRP = game.Players.LocalPlayer.Character.HumanoidRootPart
  45.     for _,v in pairs(game:GetService("Workspace").coins:GetChildren()) do      
  46.         if v.Name == "coin" or v.Name == "2" or v.Name == "3" or v.Name == "4" then
  47.             v.CFrame = HRP.CFrame
  48.         end    
  49.     end  
  50.     wait()
  51.     game:GetService("Workspace").platforms.sell.CFrame = HRP.CFrame
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement