About 161 results
Open links in new tab
  1. Tech with Mike - Scripting Examples - Mr. Michael's Class

    Roblox Studio Scripting Examples Roblox Studio Roblox Stuido is a programing environment that allows users to create thier own roblox games using the programming language Lua.

  2. Tech with Mike - Shop GUI - Mr. Michael's Class

    If you name parts or tools other names make sure to update the appropriate lines in the script as well

  3. Tech with Mike - Shift to Sprint - Mr. Michael's Class

    Learn how to implement a shift-to-sprint feature in Roblox Studio with scripting examples and guidance from Mr. Michael's Class.

  4. Tech with Mike - Save Location - mrmichaelsclass.com

    Save Location Data Store Setup 1. Make sure your game is published to Roblox 2. Click Game Settings, then Options, then Enable API Services 3. Test game on Roblox Website 4. …

  5. Tech with Mike - Double Jump - Mr. Michael's Class

    local UserInputService = game:GetService("UserInputService") local localPlayer = game.Players.LocalPlayer local character local humanoid local canDoubleJump = false local …

  6. Tech with Mike - Pathfinding - Mr. Michael's Class

    Learn about pathfinding in Roblox Studio, including creating paths, computing waypoints, and utilizing the PathfindingService for efficient navigation.

  7. Tech with Mike - Roblox Studio - Mr. Michael's Class

    Roblox Studio Roblox Stuido is a programing environment that allows users to create thier own roblox games using the programming language Lua. Learn how to script Scripting Examples …

  8. Tech with Mike - Automatic Gun - Mr. Michael's Class

    local gun = script.Parent local gun_shot = gun.Handle ['Gun Shot'] local ReplicatedStorage = game:GetService ('ReplicatedStorage') local remoteEvent = ReplicatedStorage:WaitForChild …

  9. Tech with Mike - Teleport Tool - Mr. Michael's Class

    local tool = script.Parent local player = game.Players.LocalPlayer local canTeleport = true tool.Equipped:Connect (function (mouse) mouse.Button1Down:Connect (function () if …

  10. Tech with Mike - Admin Commands - Mr. Michael's Class

    local rs = game:GetService ('ReplicatedStorage') local commandEvent = rs:WaitForChild ('CommandEvent') local frame = script.Parent local enter = frame.Enter local box = …