Advertisement
Guest User

Azure mines scripts.

a guest
Jan 21st, 2018
6,696
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Mine.Unobtainium.CFrame + Vector3.new(0,5,0)
  2. change Unobtainium to whatever ore you want
  3. i would recommend running these 2 scripts (remove all stone and disable darkness) before doing this, also enable fly with r2u or something
  4. [i did not create these scripts, only the one above]
  5.  
  6.  
  7. disable darkness:
  8. local s = Instance.new("PointLight", game.Players.LocalPlayer.Character.Head)
  9. s.Brightness = 0.3
  10. s.Range = 100
  11. game.Lighting.Changed:connect(function()
  12. game.Lighting.TimeOfDay = "14:00:00"
  13. game.Lighting.FogEnd = 9999
  14. game.Lighting.Brightness = 2
  15. game.Lighting.ColorCorrection.Brightness = 0.1
  16. game.Lighting.ColorCorrection.Saturation = 0.1
  17. game.Lighting.Bloom.Intensity = 0.1
  18. end)
  19.  
  20. remove stone:
  21. for i,v in pairs(game.Workspace.Mine:GetChildren()) do
  22. if string.match(v.Name, "Stone") then
  23. v:Remove()
  24. end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement