Advertisement
SaadOthmanIC

Script 1 (Roblox Nausea Effect)

Jul 29th, 2021
1,421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. --local script in StarterGui
  2. local cam = workspace.CurrentCamera
  3.  
  4. local nausea = require(game:GetService("ReplicatedStorage"):WaitForChild("Nausea"))
  5.  
  6. --The 4 lines below just delay the start of the effect to make sure the character is there
  7.  
  8. local players =  game:GetService("Players")
  9.  
  10. local player = players.LocalPlayer
  11.  
  12. local character = plr.Character or plr.CharacterAdded:Wait()
  13.  
  14. local rootpart = char:WaitForChild("HumanoidRootPart")
  15.  
  16.  
  17. --Effect starts here
  18. nausea:Start(cam, 5, 0.1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement