Help with my script

Hi Devolopers ,

I used this script below in the studio to help get the in game tools but it didn’t work…Is this script ok ? :

Script.Parent.MouseButton1Click:Connect(function()
      game.ReplicatedStorage.ToolEvents.GravityCoilEvent:FireServer()
end)
2 Likes

The word Script is supposed to be typed all lower cased like this

script.Parent.MouseButton1Click:Connect(function()
      game.ReplicatedStorage.ToolEvents.GravityCoilEvent:FireServer()
end)
3 Likes