MRobbin99

Fantastic Frontier

Feb 22nd, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. player = game.Players.LocalPlayer.Character
  2. fogbox = player.Fogbox:GetChildren()
  3. for i = 1, #fogbox do
  4. fogbox[i]:Destroy()
  5. end
  6.  
  7. platform = Instance.new("Part", workspace)
  8. platform.Anchored = true
  9. platform.Size = Vector3.new(10,1,10)
  10. platform.CFrame = CFrame.new(1228, 1800, 70)
  11.  
  12. wall = Instance.new("Part", workspace)
  13. wall.Anchored = true
  14. wall.Size = Vector3.new(10,10,1)
  15. Wall.CFrame = CFrame.new(1228, 1805, 65)
  16. wall.Transparencyy = .1
  17.  
  18. hum = game.Players.LocalPlayer.HumanoidRootPart
  19.  
  20. hum.CFrame = platform.CFrame * CFrame.new(0,5,0)
Add Comment
Please, Sign In to add comment