Advertisement
Hex4rr

high

Nov 11th, 2020 (edited)
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. local colValR = Instance.new("NumberValue")
  2. local colValG = Instance.new("NumberValue")
  3. local colValB = Instance.new("NumberValue")
  4. local fovVal = Instance.new("NumberValue")
  5. local healthVal = Instance.new("NumberValue")
  6. local ancVal = 0
  7. local sitVal = 0
  8. while wait() do
  9. sitVal = math.random(1,5)
  10. ancVal = math.random(1,10)
  11. if ancVal == 6 then
  12. local plr = game.Players.LocalPlayer.Character
  13. plr["Right Arm"].Anchored = true
  14. plr["Left Arm"].Anchored = true
  15. plr["Right Leg"].Anchored = true
  16. plr["Left Leg"].Anchored = true
  17. plr["Head"].Anchored = true
  18. plr["Torso"].Anchored = true
  19. wait()
  20. plr["Right Arm"].Anchored = false
  21. plr["Left Arm"].Anchored = false
  22. plr["Right Leg"].Anchored = false
  23. plr["Left Leg"].Anchored = false
  24. plr["Head"].Anchored = false
  25. plr["Torso"].Anchored = false
  26. end
  27. if sitVal == 3 then
  28. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  29. wait()
  30. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  31. end
  32. colValR.Value = math.random(0,225)
  33. colValG.Value = math.random(0,225)
  34. colValB.Value = math.random(0,225)
  35. fovVal.Value = math.random(50,120)
  36. healthVal.Value = math.random(1,100)
  37. game.Lighting.Ambient = Color3.fromRGB(colValR.Value,colValG.Value,colValB.Value)
  38. game.Workspace.Camera.FieldOfView = fovVal.Value
  39. if game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  40. game.Workspace.Camera.FieldOfView = 70
  41. end
  42. end
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement